home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Miscellany
/
Swap.h
< prev
Wrap
Text File
|
2000-06-23
|
165b
|
15 lines
// Swap.h
#ifndef Swap_h
#define Swap_h
template <class Type>
void Swap( Type& left, Type& right )
{
Type out( left );
left = right;
right = out;
}
#endif